home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #3 / Amiga Plus CD - 2002 - No. 03.iso / AmiSoft / Dev / C / Tinygl.lha / TinyGL / examples / smakefile < prev    next >
Encoding:
Makefile  |  2003-01-22  |  250 b   |  16 lines

  1. CC=sc
  2.  
  3. all: gears lesson3 triangle texobj
  4.  
  5. gears: gears.c
  6.     $(CC) gears.c LINK TO gears
  7.     
  8. lesson3: lesson3.c
  9.     $(CC) lesson3.c LINK TO lesson3
  10.  
  11. triangle: triangle.c
  12.     $(CC) triangle.c LINK TO triangle
  13.  
  14. texobj: texobj.c
  15.     $(CC) texobj.c LINK TO texobj
  16.